home *** CD-ROM | disk | FTP | other *** search
/ Hottest 6 / Hottest 6 (1996)(PDSoft)[!].iso / software / rendering / pov / povray40 / amiga.c next >
C/C++ Source or Header  |  1978-11-24  |  28KB  |  964 lines

  1. /****************************************************************************
  2. *                   amiga.c
  3. *
  4. *  This module handles all of the Amiga-specific code for the raytracer.
  5. *
  6. *  from Persistence of Vision Raytracer
  7. *  Copyright 1992 Persistence of Vision Team
  8. *---------------------------------------------------------------------------
  9. *  Copying, distribution and legal info is in the file povlegal.doc which
  10. *  should be distributed with this file. If povlegal.doc is not available
  11. *  or for more info please contact:
  12. *
  13. *       Drew Wells [POV-Team Leader]
  14. *       CIS: 73767,1244  Internet: 73767.1244@compuserve.com
  15. *       Phone: (213) 254-4041
  16. *
  17. * This program is based on the popular DKB raytracer version 2.12.
  18. * DKBTrace was originally written by David K. Buck.
  19. * DKBTrace Ver 2.0-2.12 were written by David K. Buck & Aaron A. Collins.
  20. * HAM-8 Support by Markus Stipp
  21. *
  22. *****************************************************************************/
  23.  
  24.  
  25. #include "frame.h"
  26. #include "povproto.h"
  27.  
  28. #include <proto/exec.h>
  29. #include <proto/intuition.h>
  30. #include <proto/graphics.h>
  31. #include <proto/dos.h>
  32. #include <proto/expansion.h>
  33. #include <exec/types.h>
  34. #include <intuition/intuition.h>
  35. #include <graphics/display.h>
  36. #include <libraries/expansionbase.h>
  37.  
  38. void geta4(void);
  39. void Requestor_Handler(void);
  40. void Amiga_open(void);
  41. void Amiga_close(void);
  42. void open_requestor(void);
  43. void close_requestor(void);
  44. void write_byte(int x, int y, unsigned char n);
  45. void write_hame_pixel(int x, int y, char Red, char Green, char Blue);
  46.  
  47. void write_cookie(unsigned char *brand, int line);
  48. void make_hame_palette(struct ViewPort *vp);
  49. void SetRGB8 (short reg, unsigned char rr, unsigned char gg,
  50.               unsigned char bb, short base);
  51.  
  52. void OpenFirecracker (void);
  53. void    write_firecracker_pixel(UWORD x, UWORD y, UBYTE r, UBYTE g, UBYTE b);
  54.  
  55. extern unsigned int Options;
  56. extern char DisplayFormat;
  57. extern FRAME     Frame;
  58.  
  59. #define INT_REV 29L
  60. #define GR_REV 29L
  61.  
  62. struct IntuitionBase *IntuitionBase;
  63. struct GfxBase *GfxBase;
  64.  
  65. struct Screen *s;
  66. volatile struct Window *w;
  67. struct Task *Requestor_Task;
  68.  
  69. volatile int Requestor_Running;
  70. volatile extern int Stop_Flag;
  71.  
  72. SHORT RegUsed = 2;
  73.  
  74. #define OFFSET 13
  75. #define MINOFFSET 6
  76.  
  77. #define SCREEN_WIDTH 320
  78. #define SCREEN_HEIGHT 512
  79.  
  80. #define HAM8_SCREEN_WIDTH 640
  81.  
  82. #define HAME_SCREEN_WIDTH 640
  83. #define HAME_SCREEN_HEIGHT 402
  84.  
  85. struct NewScreen Ham_Screen =
  86.    {
  87.    0, 0,
  88.    SCREEN_WIDTH, SCREEN_HEIGHT,
  89.    6,
  90.    0, 1,
  91.    INTERLACE | HAM,
  92.    SCREENQUIET,
  93.    NULL,
  94.    (UBYTE *) "POV-Ray",
  95.    NULL,
  96.    NULL
  97.    };
  98.  
  99. struct NewScreen Ham8_Screen =
  100.    {
  101.    0, 0,
  102.    HAM8_SCREEN_WIDTH, SCREEN_HEIGHT,
  103.    8,
  104.    0, 1,
  105.    HIRES | INTERLACE | HAM,
  106.    SCREENQUIET,
  107.    NULL,
  108.    (UBYTE *) "POV-Ray",
  109.    NULL,
  110.    NULL
  111.    };
  112.  
  113. struct NewScreen Ham_E_Screen =
  114.    {
  115.    0, 0,
  116.    HAME_SCREEN_WIDTH, HAME_SCREEN_HEIGHT,
  117.    4,
  118.    0, 1,
  119.    INTERLACE | HIRES,
  120.    SCREENQUIET,
  121.    NULL,
  122.    (UBYTE *) "POV-Ray",
  123.    NULL,
  124.    NULL
  125.    };
  126.  
  127. int lacer; /* if non-zero, screen is an interlace screen. Set this... */
  128.            /* ...as soon as you open your HAM-E screen.               */
  129.  
  130. unsigned char *fp0,*fp1,*fp2,*fp3; /* These are pointers which have been... */
  131.                                    /* ...cached from the screens BitMap[]   */
  132.                                    /* ...array. This allows us to get at    */
  133.                                    /* ...them much faster. Set them as soon */
  134.                                    /* ...as you open your HAM-E screen.     */
  135.  
  136. unsigned char bitpat[] =    /* This table is used as a table of masks... */
  137.   {                         /* ...to isolate bits in the HAM-E pixels    */
  138.     128,64,32,16,8,4,2,1,
  139.   };
  140.  
  141. unsigned char ham_cookie[] =  /* ham mode cookie... preceeds any HAM...    */
  142.   {                           /* ...color registers, and triggers hardware */
  143.     0xA2,0xF5,0x84,0xDC,      /* ...into ham mode.                         */
  144.     0x6D,0xB0,0x7F,0x18
  145.   };
  146.  
  147. struct Window *Requestor_Window;
  148. volatile struct MsgPort *Requestor_Port;
  149.  
  150. struct IntuiText chip Body_Text =
  151.    {0, 1, JAM1, 5, 10, NULL, (UBYTE *) "Click to abort the picture", NULL};
  152.  
  153. struct IntuiText chip Abort_Text =
  154.    {0, 1, JAM1, 5, 3, NULL, (UBYTE *) "Abort", NULL};
  155.  
  156. UWORD chip ColorTbl[16] = { 0x000, 0x111, 0x222, 0x333, 0x444, 0x555, 0x666,
  157.                        0x777, 0x888, 0x999, 0xaaa, 0xbbb, 0xccc, 0xddd,
  158.                        0xeee, 0xfff };
  159.  
  160. LONG last_red = 0, last_green = 0, last_blue = 0, last_y = -1, last_x = -1;
  161.  
  162. /* Firecracker routines */
  163. typedef struct BOARD {
  164.     ULONG    orgb;
  165.     ULONG    orgb2;        /* autoincrementing */
  166.     UWORD    pad;
  167.     UBYTE    control0;
  168.     UBYTE    control1;
  169.     UWORD    y, x;
  170. } BOARD;
  171.  
  172. BOARD        *board;
  173. int fc_width;
  174.  
  175. void amiga_init_POVRAY(void )
  176.    {
  177.    (void) onbreak(amiga_close_all);
  178.    }
  179.  
  180. int matherr (x)
  181.    struct __exception *x;
  182.    {
  183.    fprintf (stderr, "Math error type: %d from function %s values: %g %g\n",
  184.            x->type, x->name, x->arg1, x->arg2);
  185.  
  186.    switch(x->type)
  187.      {
  188.      case DOMAIN:
  189.      case OVERFLOW:
  190.         x->retval = 1.0e17;
  191.         break;
  192.  
  193.      case SING:
  194.      case UNDERFLOW:
  195.         x->retval = 0.0;
  196.         break;
  197.  
  198.      case TLOSS:
  199.      case PLOSS:
  200.         return (0);
  201.  
  202.      default:
  203.         break;
  204.      }
  205.    return(1);
  206.    }
  207.  
  208. void Requestor_Handler ()
  209.    {
  210.    Requestor_Port = CreatePort ("ray trace port", 0L);
  211.    Requestor_Window = BuildSysRequest
  212.              (NULL, &Body_Text, NULL, &Abort_Text, GADGETUP, 280L, 60L);
  213.    Wait ((1 << Requestor_Port -> mp_SigBit)
  214.           | (1 << Requestor_Window -> UserPort -> mp_SigBit));
  215.  
  216.    Requestor_Running = FALSE;
  217.    Stop_Flag = TRUE;
  218.    }
  219.  
  220. void Amiga_open()
  221.    {
  222.    IntuitionBase = (struct IntuitionBase *) OpenLibrary ("intuition.library",INT_REV);
  223.    if (IntuitionBase == NULL)
  224.      exit(FALSE);
  225.  
  226.    GfxBase = (struct GfxBase *) OpenLibrary ("graphics.library", GR_REV);
  227.    if (GfxBase == NULL)
  228.      exit(FALSE);
  229.    Requestor_Running = FALSE;
  230.    }
  231.  
  232. void Amiga_close()
  233.    {
  234.    if (Requestor_Running) {
  235.       Signal (Requestor_Task, 1 << Requestor_Port -> mp_SigBit);
  236.       Delay (2L);
  237.       }
  238.  
  239.    if (Requestor_Window)
  240.       FreeSysRequest (Requestor_Window);
  241.  
  242.    Requestor_Window = NULL;
  243.  
  244.    CloseLibrary (GfxBase) ;
  245.    CloseLibrary (IntuitionBase) ;
  246.    }
  247.  
  248. void open_requestor()
  249.    {
  250.    Requestor_Window = NULL;
  251.    Stop_Flag = FALSE;
  252.    Requestor_Running = TRUE;
  253.    Requestor_Task = CreateTask ("Raytrace Requestor", 2L,
  254.                                 (APTR) Requestor_Handler, 20000L);
  255.    }
  256.  
  257. void display_finished ()
  258.    {
  259.    if (Requestor_Running) {
  260.      Signal (Requestor_Task, 1 << Requestor_Port -> mp_SigBit);
  261.      Delay (2L);
  262.      }
  263.  
  264.    if (Requestor_Window)
  265.       FreeSysRequest (Requestor_Window);
  266.  
  267.    Requestor_Window = NULL;
  268.    if (Options & PROMPTEXIT)
  269.       {
  270.       printf ("Finished.\nPress CR to quit.\n");
  271.       getchar();
  272.       }
  273.    }
  274.  
  275. void    OpenFirecracker() {
  276.     struct ConfigDev    *dev = NULL;
  277.     ULONG            i;
  278.  
  279.     ExpansionBase = (struct ExpansionBase *)
  280.                            OpenLibrary("expansion.library", 0L);
  281.     if (!ExpansionBase) {
  282.         printf("No expansion library\n");
  283.         exit(999);
  284.     }
  285.  
  286.     dev = FindConfigDev(NULL, 0x838, 0);
  287.     if (dev) {
  288.         board = (BOARD *)dev->cd_BoardAddr;
  289.     }
  290.     else {
  291.         printf("Can't find FireCracker\n");
  292.         exit(999);
  293.     }
  294.     CloseLibrary((struct Library *) ExpansionBase);
  295.         if (Frame.Screen_Width > 768) {
  296.        board->control0 = 0xf8;
  297.            fc_width = 1024;
  298.            }
  299.         else if (Frame.Screen_Width > 512) {
  300.        board->control0 = 0xb8;
  301.            fc_width = 768;
  302.            }
  303.         else if (Frame.Screen_Width > 384) {
  304.        board->control0 = 0x78;
  305.            fc_width = 512;
  306.            }
  307.         else {
  308.        board->control0 = 0x38;
  309.            fc_width = 384;
  310.            }
  311.  
  312.     board->control1 = 0x7f;
  313.     board->y = 0; board->x = 0;
  314.     for (i=0; i<fc_width*482; i++) {
  315.            /* I write to the auto-increment and non-autoincrement registers
  316.               to make this work on 68000's as well as 68020's. */
  317.            board->orgb  = 0x40404040;
  318.            board->orgb2 = 0x40404040;
  319.            }
  320. }
  321.  
  322.  
  323. void    write_firecracker_pixel(x,y, r,g,b)
  324. UWORD    x,y;
  325. UBYTE    r,g,b;
  326. {
  327.     ULONG        v1,v2,v3,v;
  328.         int             new_x, new_y;
  329.  
  330.     v1 = r; v2 = g; v3 = b;
  331.     v = ((v1<<16)&0xff0000) + ((v2<<8)&0xff00) + (v3&0xff);
  332.  
  333.     new_y = y+(482-Frame.Screen_Height)/2; new_x = x+(fc_width-Frame.Screen_Width)/2;
  334.         if ((new_x >= 0) && (new_y >= 0)
  335.             && (new_x < fc_width) && (new_y < 482)) {
  336.            board->y = new_y;
  337.            board->x = new_x;
  338.        board->orgb2 = v;
  339.            }
  340. }
  341.  
  342. /*:
  343. .n write_byte()
  344. .k low_level write_byte byte_write write_pixel
  345. .b
  346.  
  347. SYNOPSIS:   void write_byte(x,y,n);
  348.                 short x;
  349.                 int y;
  350.                 unsigned char n;
  351.  
  352. FUNCTION:   This function is similar to the Amiga's WritePixel routine.
  353.             is simply takes the incoming position and value and writes
  354.             them to the HAM-E screen appropriately.
  355.  
  356. INPUTS:     x - horizontal position on screen.
  357.             y - vertical position on screen.
  358.             n - value 0-255 to write in the pixel.
  359.  
  360. RESULTS:    None
  361.  
  362. BUGS:       None Known.
  363.  
  364. LIMITATIONS:Hard coded for screen width of 320 pixels (640 hi-res pixels)
  365.  
  366. SEE ALSO:   Global variables "fp3", "fp2", "fp1", "fp0", "bitpat[]"
  367.  
  368. :*/
  369.  
  370. void write_byte(x,y,n)
  371.   int x;
  372.   int y;
  373.   unsigned char n;
  374.   {
  375.   register int ypos,byte_offset;
  376.   register short bit_offset;
  377.     ypos = y * 80; /* index to correct scan line - note hard coded width! */
  378.     bit_offset = (x << 1) & 7; /* find base bit position */
  379.     byte_offset = (x >> 2);   /* find base byte offset */
  380.     if (n & 128) *(fp3 + ypos + byte_offset) |= bitpat[bit_offset];
  381.             else *(fp3 + ypos + byte_offset) &= ~bitpat[bit_offset];
  382.     if (n &  64) *(fp2 + ypos + byte_offset) |= bitpat[bit_offset];
  383.             else *(fp2 + ypos + byte_offset) &= ~bitpat[bit_offset];
  384.     if (n &  32) *(fp1 + ypos + byte_offset) |= bitpat[bit_offset];
  385.             else *(fp1 + ypos + byte_offset) &= ~bitpat[bit_offset];
  386.     if (n &  16) *(fp0 + ypos + byte_offset) |= bitpat[bit_offset];
  387.             else *(fp0 + ypos + byte_offset) &= ~bitpat[bit_offset];
  388.     bit_offset++; /* to next nybble */
  389.     if (bit_offset == 8) /* carry into next byte? */
  390.       {
  391.         bit_offset=0;
  392.         byte_offset++;
  393.       }
  394.     if (n & 8) *(fp3 + ypos + byte_offset) |= bitpat[bit_offset];
  395.           else *(fp3 + ypos + byte_offset) &= ~bitpat[bit_offset];
  396.     if (n & 4) *(fp2 + ypos + byte_offset) |= bitpat[bit_offset];
  397.           else *(fp2 + ypos + byte_offset) &= ~bitpat[bit_offset];
  398.     if (n & 2) *(fp1 + ypos + byte_offset) |= bitpat[bit_offset];
  399.           else *(fp1 + ypos + byte_offset) &= ~bitpat[bit_offset];
  400.     if (n & 1) *(fp0 + ypos + byte_offset) |= bitpat[bit_offset];
  401.           else *(fp0 + ypos + byte_offset) &= ~bitpat[bit_offset];
  402.   }
  403.  
  404. /*:
  405. .n write_cookie()
  406. .k cookie low_level setup configure
  407. .b
  408.  
  409. SYNOPSIS:   void write_cookie(brand,line);
  410.                 unsigned char *brand;
  411.                 int line;
  412.  
  413. FUNCTION:    This function writes the cookie on a particular line.
  414.              The variable "brand" is a pointer to an arrary of data
  415.              that contains the particular cookie for the mode you want.
  416.              These arrays are the global ones "ham_cookie[]" and
  417.              "reg_cookie[]".
  418.  
  419.              Call as:
  420.  
  421.                   write_cookie(ham_cookie,line);
  422.                               -or-
  423.                   write_cookie(reg_cookie,line);
  424.  
  425.              Note: If you have a four line palette, you need to call
  426.              this function for each successive line the palette exists
  427.              upon, for example:
  428.  
  429.                   write_cookie(reg_cookie,0);
  430.                   write_cookie(reg_cookie,1);
  431.                   write_cookie(reg_cookie,2);
  432.                   write_cookie(reg_cookie,3);
  433.  
  434.                         -or-
  435.  
  436.                   for (i=0; i<4; i++)
  437.                     {
  438.                       write_cookie(reg_cookie,i);
  439.                     }
  440.  
  441.              If the global variable "lacer" is set, this function will
  442.              write the cookie data on the appropriate lines in both
  443.              fields... sending four lines of cookie to the function
  444.              with the lines 0,1,2,3 will write cookies on line pairs
  445.              0-1, 2-3, 4-5, and 6-7.
  446.  
  447. INPUTS:     A pointer to the apropriate cookie and the line to put it on.
  448.  
  449. RESULTS:    None
  450.  
  451. BUGS:       None Known.
  452.  
  453. LIMITATIONS:None Known.
  454.  
  455. SEE ALSO:   The global variable "lacer" and the "ham_cookie[]"
  456.             and reg_cookie[] global arrays.
  457.  
  458. :*/
  459. void write_cookie(brand,line)
  460.   unsigned char *brand;
  461.   int line;
  462.   {
  463.   int i;
  464.     if (lacer) /* we need double the cookie data! */
  465.       {
  466.         for (i=0; i<8; i++)
  467.           {
  468.             write_byte(i,line*2,brand[i]);
  469.             write_byte(i,(line*2)+1,brand[i]);
  470.           }
  471.       }
  472.     else
  473.       {
  474.         for (i=0; i<8; i++)
  475.           {
  476.             write_byte(i,line,brand[i]);
  477.           }
  478.       }
  479.   }
  480.  
  481. /*:
  482. .n make_hame_palette()
  483. .k amiga_palette palette_amiga setup configure
  484. .b
  485.  
  486. SYNOPSIS:   void make_hame_palette(vp);
  487.                 struct ViewPort *vp;
  488.  
  489. FUNCTION:   Sets palette for Amiga side of hardware: The palette here is
  490.             designed to achieve two independant goals. First, and most
  491.             importantly, it creates a situation where the IRGB lines at
  492.             the Amiga's data port will exactly mirror the data in the
  493.             bitplanes of the screen as each pixel is emitted.
  494.             Secondly, this palette makes the images visible, if not
  495.             sensible, on a non HAM-e equipped Amiga... Hopefully this
  496.             distinctive color palette will quickly cue the user that
  497.             they are missing something good. :^)
  498.  
  499.             IRGB to 12 bit correspondence:
  500.  
  501.             bit 8 - b3 of red
  502.             bit 4 - b3 of green
  503.             bit 2 - b3 of blue
  504.             bit 1 - b0 of blue
  505.  
  506. INPUTS:     A pointer to the ViewPort that "belongs" to this screen.
  507.  
  508. RESULTS:    None
  509.  
  510. BUGS:       None Known.
  511.  
  512. LIMITATIONS:None Known.
  513.  
  514. SEE ALSO:
  515.  
  516. :*/
  517. void make_hame_palette(vp)
  518.   struct ViewPort *vp;
  519.   {
  520.   int rr,gg,bb,i;
  521.   int col;
  522.     col=0;
  523.     for (i=0; i<16; i++)
  524.       {
  525.         rr=0; gg=0; bb=0;
  526.         if (i & 8) rr  = 8; /* this builds the IRGB bit outputs...   */
  527.         if (i & 4) gg  = 8; /* ...these four bits are all that are   */
  528.         if (i & 2) bb  = 8; /* ...required to make the HAM-E run,    */
  529.         if (i & 1) bb |= 1; /* ...they xfer b0->b3 to the IRGB lines */
  530.         if (i != 0)     /* we don't mess with c0 - we leave it black */
  531.           {
  532.             rr += (col & 7); /* build strange colors in cregs 1-15...  */
  533.             col += 2;        /* ...these extra bits sent to the color  */
  534.             gg += (col & 7); /* ...registers make amiga palette very   */
  535.             col += 2;        /* ...interesting to look at if the HAM-E */
  536.             bb += (col & 6); /* ...is NOT attached. Otherwise useless. */
  537.             col += 2;        /* ...The code in this "if" is optional.  */
  538.           }
  539.         SetRGB4(vp,i,rr,gg,bb); /* this actually sets the Amiga color regs */
  540.       }
  541.   }
  542.  
  543. /*:
  544. .n SetRGB8()
  545. .k palette_hame hame_palette setup configure
  546. .b
  547.  
  548. SYNOPSIS:   void SetRGB8(reg,rr,gg,bb,base);
  549.                 int reg,rr,gg,bb,base;
  550.  
  551. FUNCTION:   This routine sets the color registers in the HAM-E hardware.
  552.             It can handle color registers located at any point on screen,
  553.             by setting the "base" variable to the starting scan line where
  554.             the color registers exist. Normally, the cookie and it's
  555.             associated color registers are located beginning at scan line 0.
  556.             If the screen is an interlace screen, this routine will set both
  557.             set of color registers identically; when in interlace, the
  558.             HAM-E maintains separate sets of color registers for the
  559.             odd and even interlace fields. Since this routine sets both
  560.             sets of color registers identically, you don't have to
  561.             worry about dealing with this feature.
  562.  
  563. INPUTS:     reg  - the color register number from 0 to 255 to be set
  564.             rr   - the red value from 0-255
  565.             gg   - the green value from 0-255
  566.             bb   - the blue value from 0-255
  567.             base - the starting scan line of the first coookie position
  568.                    (usually zero)
  569.  
  570. RESULTS:    None
  571.  
  572. BUGS:       None Known.
  573.  
  574. LIMITATIONS:None Known.
  575.  
  576. SEE ALSO:   The global variable "lacer"
  577.  
  578. :*/
  579. void SetRGB8(reg,rr,gg,bb,base)
  580.   short reg;
  581.   unsigned char rr,gg,bb;
  582.   short base;
  583.   {
  584.   short p_row,p_index;
  585.     p_row = (reg >> 6) + base;           /* palette row 0-3.  */
  586.     p_index = ((reg & 0x3f) * 3) + 8;    /* reg 0-63 in p_row */
  587.     if (lacer) /* then we need both fields! */
  588.       {
  589.         /* for the even field: */
  590.         write_byte(p_index,   p_row*2, rr);         /* put RED value     */
  591.         write_byte(p_index+1, p_row*2, gg);         /* put GREEN value   */
  592.         write_byte(p_index+2, p_row*2, bb);         /* put BLUE value    */
  593.  
  594.         /* here is the stuff for the ODD field: */
  595.         write_byte(p_index,   (p_row*2)+1, rr);     /* put RED value     */
  596.         write_byte(p_index+1, (p_row*2)+1, gg);     /* put GREEN value   */
  597.         write_byte(p_index+2, (p_row*2)+1, bb);     /* put BLUE value    */
  598.       }
  599.     else /* just write to one field */
  600.       {
  601.         write_byte(p_index,   p_row, rr);     /* put RED value     */
  602.         write_byte(p_index+1, p_row, gg);     /* put GREEN value   */
  603.         write_byte(p_index+2, p_row, bb);     /* put BLUE value    */
  604.       }
  605.   }
  606.  
  607. void display_init (width, height)
  608.    int width, height;
  609.    {
  610.    Amiga_open();
  611.    open_requestor();
  612.  
  613.    Delay (10);
  614.  
  615.    if (DisplayFormat == 'E') {
  616.       if ((s = (struct Screen *) OpenScreen (&Ham_E_Screen)) == NULL)
  617.          exit (FALSE);
  618.       ShowTitle (s, FALSE);
  619.       lacer = 1;
  620.       fp0 = s->BitMap.Planes[0];
  621.       fp1 = s->BitMap.Planes[1];
  622.       fp2 = s->BitMap.Planes[2];
  623.       fp3 = s->BitMap.Planes[3];
  624.       make_hame_palette(&s->ViewPort);
  625.       SetAPen (&(s->RastPort), 0L);
  626.       RectFill (&(s -> RastPort), 0L, 0L, HAME_SCREEN_WIDTH-1, 1);
  627.       SetAPen (&(s->RastPort), 1L);
  628.       RectFill (&(s -> RastPort), 0L, 2L, HAME_SCREEN_WIDTH-1, HAME_SCREEN_HEIGHT-1);
  629.       write_cookie(ham_cookie, 0);
  630.       SetRGB8 (0x11, 0x80, 0x80, 0x80, 0);
  631.       }
  632.    else if (DisplayFormat == 'F') {
  633.     OpenFirecracker();
  634.       }
  635.    else if (DisplayFormat == '8') {
  636.       if ((s = (struct Screen *) OpenScreen (&Ham8_Screen)) == NULL)
  637.          exit (FALSE);
  638.  
  639.       ShowTitle (s, FALSE);
  640.  
  641.       SetRGB32(&(s->ViewPort), 0L, 0x00000000, 0x00000000, 0x00000000);
  642.       SetRGB32(&(s->ViewPort), 1L, 0x50000000, 0x50000000, 0x50000000);
  643.       SetAPen (&(s->RastPort), 1L);
  644.       RectFill (&(s->RastPort), 0L, 0L, 639L, 511L);
  645.       }
  646.    else {
  647.       if ((s = (struct Screen *) OpenScreen (&Ham_Screen)) == NULL)
  648.          exit (FALSE);
  649.  
  650.       ShowTitle (s, FALSE);
  651.  
  652.       LoadRGB4 (&(s->ViewPort), ColorTbl, 16L);
  653.       SetAPen (&(s->RastPort), 7L);
  654.       RectFill (&(s -> RastPort), 0L, 0L, 319L, 511L);
  655.       }
  656.    }
  657.  
  658. void display_close ()
  659.    {
  660.    if (Requestor_Running) {
  661.       Signal (Requestor_Task, 1 << Requestor_Port -> mp_SigBit);
  662.       Delay (2L);
  663.       }
  664.  
  665.    if (Requestor_Window)
  666.       FreeSysRequest (Requestor_Window);
  667.  
  668.    Requestor_Window = NULL;
  669.  
  670.    if (DisplayFormat != 'F')
  671.       CloseScreen (s);
  672.    }
  673.  
  674. #define absdif(x,y) ((x > y) ? (x - y) : (y - x))
  675. #define max3(x,y,z) ((x>y)?((x>z)?1:3):((y>z)?2:3))
  676.  
  677. void write_hame_pixel (x, y, Red, Green, Blue)
  678.    int x, y;
  679.    char Red, Green, Blue;
  680.    {
  681.    register unsigned char colour;
  682.    short delta_red, delta_green, delta_blue;
  683.  
  684.    if ((x >= SCREEN_WIDTH )  || (y >= SCREEN_HEIGHT))
  685.       return;
  686.  
  687.    Red = (Red >> 2) & 0x3F;
  688.    Green = (Green >> 2) & 0x3F;
  689.    Blue = (Blue >> 2) & 0x3F;
  690.  
  691.    if (last_y != y) {
  692.       last_y = y;
  693.       last_red = last_green = last_blue = 0;
  694.       }
  695.  
  696.    delta_red = absdif (Red, last_red);
  697.    delta_green = absdif (Green, last_green);
  698.    delta_blue = absdif (Blue, last_blue);
  699.  
  700.    switch (max3(delta_red, delta_green, delta_blue)) {
  701.       case 1:
  702.          last_red = Red;
  703.          colour = 0x80 + Red;
  704.          break;
  705.       case 2:
  706.          last_green = Green;
  707.          colour = 0xc0 + Green;
  708.          break;
  709.       case 3:
  710.          last_blue = Blue;
  711.          colour = 0x40 + Blue;
  712.          break;
  713.       }
  714.  
  715.    write_byte (x, y+2, colour);
  716.    }
  717.  
  718. void display_plot (x, y, Red, Green, Blue)
  719.    int x, y;
  720.    char Red, Green, Blue;
  721.    {
  722.    register short i;
  723.    short delta_red, delta_green, delta_blue;
  724.    register char MRed, MGreen, MBlue, RRed, RGreen, RBlue;
  725.    ULONG LRed, LGreen, LBlue, colour ;
  726.    BOOL RegFound = FALSE;
  727.    short RelError, RelError2;
  728.    ULONG Table[64][3];
  729.  
  730.    if (DisplayFormat == 'E')
  731.       return (write_hame_pixel(x, y, Red, Green, Blue));
  732.    else if (DisplayFormat == 'F')
  733.     return (write_firecracker_pixel((UWORD) x, (UWORD) y, Red, Green, Blue));
  734.    else if (DisplayFormat == '8') {
  735.  
  736.      if ((x >= s->Width )  || (y >= s->Height))
  737.         return;
  738.  
  739.      LRed = (ULONG) Red;
  740.      LGreen = (ULONG) Green;
  741.      LBlue = (ULONG) Blue;
  742.  
  743.      MRed = (Red >> 2) & 0x3F;
  744.      MGreen = (Green >> 2) & 0x3F;
  745.      MBlue = (Blue >> 2) & 0x3F;
  746.  
  747.      if (x!=0) {
  748.         if (last_x +1 != x || last_y != y)
  749.            return;
  750.         }
  751.  
  752.      if (last_y != y) {
  753.         last_y = y;
  754.         last_red = last_green = last_blue = 0;
  755.         }
  756.  
  757.      last_x = x;
  758.  
  759.      delta_red = absdif (MRed, last_red);
  760.      delta_green = absdif (MGreen, last_green);
  761.      delta_blue = absdif (MBlue, last_blue);
  762.  
  763.      switch (max3(delta_red, delta_green, delta_blue)) {
  764.         case 1:
  765.            RelError = delta_green+delta_blue;
  766.  
  767.            if(RelError > MINOFFSET)
  768.              {
  769.                GetRGB32(s->ViewPort.ColorMap, 0L, (ULONG) RegUsed, (ULONG *) &Table);
  770.                for (i=0; i<RegUsed; i++)
  771.                  {
  772.                     RRed = ((Table[i][0])>>2) & 0x3F;
  773.                     RGreen = ((Table[i][1])>>2) & 0x3F;
  774.                     RBlue = ((Table[i][2])>>2) & 0x3F;
  775.                     RelError2 = absdif(RRed, MRed) + absdif(RGreen, MGreen) + absdif(RBlue, MBlue);
  776.                     if(RelError2 < RelError)
  777.                       {
  778.                         RegFound = TRUE;
  779.                         RelError = RelError2;
  780.                         last_red = RRed;
  781.                         last_green = RGreen;
  782.                         last_blue = RBlue;
  783.                         colour = (ULONG) i;
  784.                       }
  785.                  }
  786.  
  787.                if(OFFSET < RelError)
  788.                  {
  789.                     if (RegUsed < 64)
  790.                       {
  791.                         LRed = LRed << 24;
  792.                         LGreen = LGreen << 24;
  793.                         LBlue = LBlue << 24;
  794.  
  795.                         SetRGB32(&(s->ViewPort), (ULONG) RegUsed, LRed, LGreen, LBlue);
  796.                         colour = (ULONG) RegUsed++;
  797.                         last_red = MRed;
  798.                         last_green = MGreen;
  799.                         last_blue = MBlue;
  800.                         RegFound = TRUE;
  801.                       }
  802.                  }
  803.              }
  804.            if(!RegFound)
  805.              {
  806.                last_red = MRed;
  807.                colour = 0x80 + MRed;
  808.              }
  809.            break;
  810.         case 2:
  811.            RelError = delta_red+delta_blue;
  812.  
  813.            if (RelError > MINOFFSET)
  814.              {
  815.                GetRGB32(s->ViewPort.ColorMap, 0L, (ULONG) RegUsed, (ULONG *) &Table);
  816.                for (i=0; i<RegUsed; i++)
  817.                  {
  818.                     RRed = ((Table[i][0])>>2) & 0x3F;
  819.                     RGreen = ((Table[i][1])>>2) & 0x3F;
  820.                     RBlue = ((Table[i][2])>>2) & 0x3F;
  821.  
  822.                     RelError2 = absdif(RRed, MRed) + absdif(RGreen, MGreen) + absdif(RBlue, MBlue);
  823.                     if(RelError2 < RelError)
  824.                       {
  825.                         RegFound = TRUE;
  826.                         RelError = RelError2;
  827.                         last_red = RRed;
  828.                         last_green = RGreen;
  829.                         last_blue = RBlue;
  830.                         colour = (ULONG) i;
  831.                       }
  832.                  }
  833.  
  834.                if(OFFSET < RelError)
  835.                  {
  836.                     if (RegUsed < 64)
  837.                       {
  838.                         LRed = LRed << 24;
  839.                         LGreen = LGreen << 24;
  840.                         LBlue = LBlue << 24;
  841.  
  842.                         SetRGB32(&(s->ViewPort), (ULONG) RegUsed, LRed, LGreen, LBlue);
  843.                         colour = (ULONG) RegUsed++;
  844.                         last_red = MRed;
  845.                         last_green = MGreen;
  846.                         last_blue = MBlue;
  847.                         RegFound = TRUE;
  848.                       }
  849.                  }
  850.              }
  851.  
  852.            if(!RegFound)
  853.              {
  854.                last_green = MGreen;
  855.                colour = 0xC0 + MGreen;
  856.              }
  857.            break;
  858.         case 3:
  859.            RelError = delta_red+delta_green;
  860.  
  861.            if(RelError > MINOFFSET)
  862.              {
  863.                GetRGB32(s->ViewPort.ColorMap, 0L, (ULONG) RegUsed, (ULONG *) &Table);
  864.                for (i=0; i<RegUsed; i++)
  865.                  {
  866.                     RRed = ((Table[i][0])>>2) & 0x3F;
  867.                     RGreen = ((Table[i][1])>>2) & 0x3F;
  868.                     RBlue = ((Table[i][2])>>2) & 0x3F;
  869.  
  870.                     RelError2 = absdif(RRed, MRed) + absdif(RGreen, MGreen) + absdif(RBlue, MBlue);
  871.                     if(RelError2 < RelError)
  872.                       {
  873.                         RegFound = TRUE;
  874.                         RelError = RelError2;
  875.                         last_red = RRed;
  876.                         last_green = RGreen;
  877.                         last_blue = RBlue;
  878.                         colour = (ULONG) i;
  879.                       }
  880.                  }
  881.  
  882.                if(OFFSET < RelError)
  883.                  {
  884.                     if (RegUsed < 64)
  885.                       {
  886.                         LRed = LRed << 24;
  887.                         LGreen = LGreen << 24;
  888.                         LBlue = LBlue << 24;
  889.  
  890.                         SetRGB32(&(s->ViewPort), (ULONG) RegUsed, LRed, LGreen, LBlue);
  891.                         colour = (ULONG) RegUsed++;
  892.                         last_red = MRed;
  893.                         last_green = MGreen;
  894.                         last_blue = MBlue;
  895.                         RegFound = TRUE;
  896.                       }
  897.                  }
  898.              }
  899.  
  900.            if(!RegFound)
  901.              {
  902.                last_blue = MBlue;
  903.                colour = 0x40 + MBlue;
  904.              }
  905.            break;
  906.         }
  907.  
  908.    SetAPen(&(s->RastPort), colour);
  909.    WritePixel(&(s->RastPort), x, y);
  910.    return;
  911.    }
  912.  
  913. /* HAM */
  914.  
  915.    if ((x >= s->Width )  || (y >= s->Height))
  916.       return;
  917.  
  918.    Red = (Red >> 4) & 0x0F;
  919.    Green = (Green >> 4) & 0x0F;
  920.    Blue = (Blue >> 4) & 0x0F;
  921.  
  922.    if(x!=0)
  923.      {
  924.        if(last_x +1 != x || last_y != y)
  925.            return;
  926.      }
  927.  
  928.    if (last_y != y) {
  929.       last_y = y;
  930.       last_red = last_green = last_blue = 0;
  931.       }
  932.  
  933.    last_x = x;
  934.  
  935.    delta_red = absdif (Red, last_red);
  936.    delta_green = absdif (Green, last_green);
  937.    delta_blue = absdif (Blue, last_blue);
  938.  
  939.    switch (max3(delta_red, delta_green, delta_blue)) {
  940.       case 1:
  941.          last_red = Red;
  942.          colour = 0x20 + Red;
  943.          break;
  944.       case 2:
  945.          last_green = Green;
  946.          colour = 0x30 + Green;
  947.          break;
  948.       case 3:
  949.          last_blue = Blue;
  950.          colour = 0x10 + Blue;
  951.          break;
  952.       }
  953.  
  954.    SetAPen(&(s->RastPort), colour);
  955.    WritePixel(&(s->RastPort), x, y);
  956.  
  957.    }
  958.  
  959. int amiga_close_all ()
  960.    {
  961.    close_all();
  962.    return (1);
  963.    }
  964.